home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / jamclr.sql < prev    next >
Text File  |  2000-05-12  |  755b  |  20 lines

  1. /* RCSVER $Id: jamclr.sql,v 1.1 1999-03-15 09:34:41-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        jamclr.sql
  6. * Date:        03/15/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the jamclr table. This table contains a flag that
  9. *        specifies whether a particular user can clear a jam.    
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE jamclr
  13. (
  14.     user_id        NUMBER(38)    /* ID of user */
  15.         CONSTRAINT ref1_jamclr REFERENCES users(user_id)
  16.         ON DELETE CASCADE,
  17.     canclear    NUMBER(1),    /* Can this user clear a jam? */
  18.     CONSTRAINT pk_jamclr PRIMARY KEY (user_id)
  19. );
  20.